home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-06-05 | 524 b | 26 lines |
-
- # Makefile for 680x0 Linux mm source directory
- #
- # Copyright 1993 by Hamish Macdonald
- #
- # This file is subject to the terms and conditions of the GNU General Public
- # License. See the file "README.legal" in the main directory of this archive
- # for more details.
-
- include ../MakeVars
-
- OBJS = memory.o swap.o mmap.o kmalloc.o vmalloc.o
-
- mm.o: $(OBJS)
- $(LD) -r -o mm.o $(OBJS)
-
- dep:
- $(CPP) -M $(INCFLAGS) *.c > .depend
-
- #
- # include a dependency file if one exists
- #
- ifeq (.depend,$(wildcard .depend))
- include .depend
- endif
-